home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / popentest < prev    next >
Text File  |  1992-02-10  |  192b  |  15 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6. FILE *f;
  7. char b[256];
  8.  
  9. if (!(f = popen("min","r"))) { perror("popen()"); exit(1); }
  10.  
  11. while (fgets(b,256,f)) fputs(b,stdout);
  12.  
  13. pclose(f);
  14. }
  15.